home *** CD-ROM | disk | FTP | other *** search
/ Super PC 34 / Super PC 34 (Shareware).iso / spc / UTIL / DJGPP2 / V2 / DJLSR200.ZIP / src / libc / compat / unistd / getwd.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-02-27  |  215 b   |  12 lines

  1. /* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
  2. #include <unistd.h>
  3. #include <limits.h>
  4.  
  5. char *
  6. getwd(char *buffer)
  7. {
  8.   if (buffer == 0)
  9.     return 0;
  10.   return getcwd(buffer, PATH_MAX);
  11. }
  12.